home *** CD-ROM | disk | FTP | other *** search
-
- echo off
- cls
- IF "%1"=="C" GOTO DRIVE
- IF "%1"=="D" GOTO DRIVE
- IF "%1"=="E" GOTO DRIVE
- IF "%1"=="F" GOTO DRIVE
- IF "%1"=="G" GOTO DRIVE
- IF "%1"=="H" GOTO DRIVE
- IF "%1"=="I" GOTO DRIVE
- IF "%1"=="c" GOTO DRIVE
- IF "%1"=="d" GOTO DRIVE
- IF "%1"=="e" GOTO DRIVE
- IF "%1"=="f" GOTO DRIVE
- IF "%1"=="g" GOTO DRIVE
- IF "%1"=="h" GOTO DRIVE
- IF "%1"=="i" GOTO DRIVE
-
- ECHO Please type INSTALL X, where X is the letter of the drive you wish to install
- echo Pinball Fantasies 5 Min demo to (for example INSTALL C).
- GOTO :QUITINSTALL
-
- :DRIVE
- ECHO Pinball Fantasies 5 Min demo is about to be installed onto your %1: hard disk.
- ECHO A directory %1:\FANTDEMO will be created.
- ECHO -
- ECHO If you do not wish to continue, press Control-C now, or
- PAUSE
- ECHO -
- cls
- echo Please wait, copying Pinball Fantasies 5 Min Demo to your Hard drive.
- echo -
- echo -
-
- mkdir c:\fantdemo
- copy *.sdr c:\fantdemo
- copy *.mod c:\fantdemo
- copy *.prg c:\fantdemo
- copy *.exe c:\fantdemo
- copy *.bin c:\fantdemo
-
- c:
- cd \fantdemo
-
- cls
- echo I will now run the Setsound program. Please select which sound source your
- echo PC has.
- pause
- setsound
- cls
- echo To play the demo simply enter the directory
- echo C:\FANTDEMO
- ECHO -
- ECHO and run the Program
- echo PFDEMO
- :QUITINSTALL
-